body {
    font-family: 'Segoe UI', Arial, sans-serif;
    margin: 0;
    background: linear-gradient(120deg, #ffcf98 0%, #ffddb6 50%, #6a8cff 100%);
    color: #222;
    min-height: 100vh;
}

.price-cards {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0 2rem 0;
}

.price-card {
    background: rgba(255,255,255,0.65); /* Plus transparent */
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    padding: 1.2rem 2.5rem;
    font-size: 1.3rem;
    font-weight: bold;
    letter-spacing: 1px;
    text-align: center;
    border: 1.5px solid #fff;
    backdrop-filter: blur(2px);
    transition: box-shadow 0.2s;
}

.price-card span {
    display: block;
    font-size: 1.1rem;
    font-weight: normal;
    margin-top: 0.5rem;
    color: #d72660;
}

header {
    background: linear-gradient(120deg, #ffcf98 0%, #ffddb6 50%, #ffddb6 100%);
    color: #fff;
    padding: 2rem 0 1rem 0;
    text-align: center;
    border-radius: 0 0 16px 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    backdrop-filter: blur(4px);
}
nav a {
    color: #fff;
    margin: 0 1rem;
    text-decoration: none;
    font-weight: bold;
}
section {
    max-width: 900px;
    margin: 2rem auto;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.gallery {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}
.item {
    width: 220px;
    text-align: center;
}
.item img {
    width: 100%;
    border-radius: 6px;
    box-shadow: 0 1px 6px rgba(0,0,0,0.1);
}
footer {
    text-align: center;
    padding: 1rem;
    background: #222;
    color: #fff;
    margin-top: 2rem;
    border-radius: 0 0 8px 8px;
}
/* Zoom sur image au survol */
.item img {
    width: 100%;
    border-radius: 6px;
    box-shadow: 0 1px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}
.item img:hover {
    transform: scale(1.08);
}

/* Bouton PayPal */
.paypal-btn {
    display: inline-block;
    background: #0070ba;
    color: #fff;
    padding: 0.7em 1.5em;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 1em;
    transition: background 0.2s;
}
.paypal-btn:hover {
    background: #005c99;
}
.gallery {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}
.item {
    width: 320px;
    text-align: center;
}
.item img {
    width: 100%;
    border-radius: 16px;
    box-shadow: none;
    border: 2px solid #fff; /* Contour blanc fin */
    background: none;
    padding: 16px; /* Espace entre l'image et le cadre */
    transition: transform 0.3s, border-color 0.3s;
}

.item img:hover {
    transform: scale(1.08);
    border-color: #ff6aab; /* Rose au survol */
}
/* Bannière plus grande */
#banner .item {
    width: 420px;
}

#banner .item img {
    max-width: 400px;
}

/* Cadre blanc uniquement en contour, sans fond */
.item img {
    width: 100%;
    border-radius: 16px;
    box-shadow: none;
    border: 4px solid #fff; /* Contour blanc */
    background: none;
    padding: 0;
    transition: transform 0.3s, border-color 0.3s;
}

.item img:hover {
    transform: scale(1.08);
    border-color: #ff6aab; /* Rose au survol */
}
.don-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0; top: 0;
    width: 100vw; height: 100vh;
    background: rgba(34,34,34,0.45);
    justify-content: center;
    align-items: center;
    transition: background 0.3s;
}
.don-content {
    position: relative;
    background: rgba(255,255,255,0.85);
    border-radius: 18px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    transform: scale(0.7);
    opacity: 0;
    transition: transform 0.3s, opacity 0.3s;
}
.don-content.show {
    transform: scale(1);
    opacity: 1;
}
.close-don {
    position: absolute;
    top: 18px;
    right: 28px;
    font-size: 2rem;
    color: #ff6aab;
    cursor: pointer;
    font-weight: bold;
}
